Difference between tempdata, viewdata, and viewbag.
What is the difference between tempdata, viewdata, and viewbag?
128315-Oct-2019
Updated on 15-Oct-2019
Home / DeveloperSection / Forums / What is the difference between tempdata, viewdata, and viewbag?
Difference between tempdata, viewdata, and viewbag.
Anonymous User
15-Oct-2019Temp data - It helps to maintain data when you move from one controller to another controller or from one action to another action. In other words when you redirect, tempdata helps to maintain data between those redirects. It internally uses session variables.
View data - These helps to maintain data when you move from controller to view.
View Bag - This is a dynamic wrapper around view data. When you use Viewbag type, casting is not required. It uses the dynamic keyword internally.
Dynamic Keyword
Session variables - With the help of session variables we can maintain data from any entity to any entity.
Hidden fields and HTML controls - These helps to maintain data from UI to controller only. So you can send data from HTML controls or hidden fields to the controller using POST or GET HTTP methods.
Here, below this is a summary table that shows the different mechanisms for persistence.